-
Notifications
You must be signed in to change notification settings - Fork 567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename Event::MouseMoved to Event::MouseMove #825
Conversation
812eb11
to
af2f092
Compare
druid/src/contexts.rs
Outdated
/// event handler, but can also be called in response to other events, | ||
/// for example pressing a key to change the behavior of a widget. | ||
/// | ||
/// [`MouseMoved`]: enum.Event.html#variant.MouseDown | ||
/// [`MouseMove`]: enum.Event.html#variant.MouseDown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's fix this link to enum.Event.html#variant.MouseMove
while we're here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, fixed :)
I wonder if we should start keeping a list of breaking changes somewhere for release notes. 🤔 |
Yeah I think it might be a good idea to start a |
for now i'm going to use a label for breaking changes, which will solve one of my problems. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consistency is good, and this is a good time to get these changes in.
As discussed in #821, this renames
MouseMoved
toMouseMove
for consistency with web API's.